Screen.PrimaryScreen 属性 (System.Windows.Forms) 您所在的位置:网站首页 click system Screen.PrimaryScreen 属性 (System.Windows.Forms)

Screen.PrimaryScreen 属性 (System.Windows.Forms)

#Screen.PrimaryScreen 属性 (System.Windows.Forms) | 来源: 网络整理| 查看: 265

Screen.PrimaryScreen 属性 参考 定义 命名空间: System.Windows.Forms 程序集:System.Windows.Forms.dll

重要

一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。

获取主显示。

public: static property System::Windows::Forms::Screen ^ PrimaryScreen { System::Windows::Forms::Screen ^ get(); }; public static System.Windows.Forms.Screen PrimaryScreen { get; } public static System.Windows.Forms.Screen? PrimaryScreen { get; } static member PrimaryScreen : System.Windows.Forms.Screen Public Shared ReadOnly Property PrimaryScreen As Screen 属性值 Screen

主显示。

示例

下面的代码示例演示如何使用 PrimaryScreen 属性和 GetWorkingArea 方法。 此方法需要包含名为 的按钮的 Button1窗体。

// This method will adjust the size of the form to utilize // the working area of the screen. private: void Button1_Click( System::Object^ /*sender*/, System::EventArgs^ /*e*/ ) { // Retrieve the working rectangle from the Screen class // using the PrimaryScreen and the WorkingArea properties. System::Drawing::Rectangle workingRectangle = Screen::PrimaryScreen->WorkingArea; // Set the size of the form slightly less than size of // working rectangle. this->Size = System::Drawing::Size( workingRectangle.Width - 10, workingRectangle.Height - 10 ); // Set the location so the entire form is visible. this->Location = System::Drawing::Point( 5, 5 ); } // This method will adjust the size of the form to utilize // the working area of the screen. private void Button1_Click(System.Object sender, System.EventArgs e) { // Retrieve the working rectangle from the Screen class // using the PrimaryScreen and the WorkingArea properties. System.Drawing.Rectangle workingRectangle = Screen.PrimaryScreen.WorkingArea; // Set the size of the form slightly less than size of // working rectangle. this.Size = new System.Drawing.Size( workingRectangle.Width-10, workingRectangle.Height-10); // Set the location so the entire form is visible. this.Location = new System.Drawing.Point(5, 5); } ' This method will adjust the size of the form to utilize ' the working area of the screen. Private Sub Button1_Click(ByVal sender As System.Object, _ ByVal e As System.EventArgs) Handles Button1.Click ' Retrieve the working rectangle from the Screen class ' using the PrimaryScreen and the WorkingArea properties. Dim workingRectangle As System.Drawing.Rectangle = _ Screen.PrimaryScreen.WorkingArea ' Set the size of the form slightly less than size of ' working rectangle. Me.Size = New System.Drawing.Size(workingRectangle.Width - 10, _ workingRectangle.Height - 10) ' Set the location so the entire form is visible. Me.Location = New System.Drawing.Point(5, 5) End Sub 注解

对于单个显示系统,主显示器是唯一的显示器。

适用于


【本文地址】

公司简介

联系我们

今日新闻

    推荐新闻

    专题文章
      CopyRight 2018-2019 实验室设备网 版权所有